home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4d21.zip / TERM_PRJ.DPR < prev    next >
Text File  |  1997-06-03  |  218b  |  15 lines

  1. program Term_prj;
  2.  
  3. uses
  4.   Forms,
  5.   Term_PGM in 'Term_PGM.PAS' {Term},
  6.   DisplayUnit in 'display.pas',
  7.   wsc in 'wsc.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TTerm, Term);
  13.   Application.Run;
  14. end.
  15.